home *** CD-ROM | disk | FTP | other *** search
/ AGA Toolkit '97 / The AGA Toolkit '97.iso / programming / c / dice2.06.37 / include / lib / atexit.h next >
Encoding:
C/C++ Source or Header  |  1996-09-07  |  253 b   |  20 lines

  1.  
  2. /*
  3.  *  LIB/ATEXIT.H
  4.  *
  5.  *  (c)Copyright 1990, Matthew Dillon, All Rights Reserved
  6.  */
  7.  
  8. #ifndef _LIB_ATEXIT_H
  9. #define _LIB_ATEXIT_H
  10.  
  11. typedef struct AtExit {
  12.     struct  AtExit *Next;
  13.     void (*Func)(void);
  14. } AtExit;
  15.  
  16. extern AtExit *_ExitBase;
  17.  
  18. #endif
  19.  
  20.